crypto/tls.certificateMsg.certificates (field)
13 uses
crypto/tls (current package)
handshake_client.go#L541: if !ok || len(certMsg.certificates) == 0 {
handshake_client.go#L576: if err := c.verifyServerCertificate(certMsg.certificates); err != nil {
handshake_client.go#L586: if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
handshake_client.go#L637: certMsg.certificates = chainToSend.Certificate
handshake_messages.go#L1280: certificates [][]byte
handshake_messages.go#L1289: for _, slice := range m.certificates {
handshake_messages.go#L1293: length := 3 + 3*len(m.certificates) + i
handshake_messages.go#L1306: for _, slice := range m.certificates {
handshake_messages.go#L1344: m.certificates = make([][]byte, numCerts)
handshake_messages.go#L1348: m.certificates[i] = d[3 : 3+certLen]
handshake_server.go#L560: certMsg.certificates = hs.cert.Certificate
handshake_server.go#L637: Certificate: certMsg.certificates,
handshake_server.go#L641: if len(certMsg.certificates) != 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |